home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-22 | 529 b | 20 lines | [TEXT/MSWD] |
- syms-to-ton-n symbols-or-integers tonality
-
- converts symbols or integers tonality
- symbols must be without pause-symbols or chord
-
-
- (syms-to-ton-n '(a b d g f) '(messiaen3 c 5))
- ->((C 5) (D 5) (E 5) (|G#| 5) (G 5))
-
- (syms-to-ton-n '(a b d g f) '(blues1 c 5))
- ->((C 5) (|D#| 5) (|F#| 5) (C 6) (|A#| 5))
-
- (syms-to-ton-n '(0 2 3 5 6 8) '(blues1 c 5))
- ->((c 5) (f 5) (f# 5) (a# 5) (c 6) (f 6))
-
- (setq syms '(0 2 3 5 6 8))
- (syms-to-ton-n syms '(major c 5))
- ->((c 5) (e 5) (f 5) (a 5) (b 5) (d 6))
- see also syms-to-ton and ton-to-syms
-